go/ast.CompositeLit.Rbrace (field)

4 uses

	go/ast (current package)
		ast.go#L335: 		Rbrace     token.Pos // position of "}"
		ast.go#L540: func (x *CompositeLit) End() token.Pos   { return x.Rbrace + 1 }

	go/parser
		parser.go#L1726: 	return &ast.CompositeLit{Type: typ, Lbrace: lbrace, Elts: elts, Rbrace: rbrace}

	go/types
		literals.go#L226: 				check.errorf(inNode(e, e.Rbrace), InvalidStructLit, "too few values in struct literal of type %s", base)